home *** CD-ROM | disk | FTP | other *** search
- /* Cabaret-raw-CP converted to 15 bit 320×256 ILBM, to LoRes-lace HAM */
-
- address "ADPro"
- options results
-
- lformat "IFF"
- render_type HAM
-
- getfile '"Pick a 15 bit ILBM file"'
- if rc = 0 then do
- naam = ADPRO_RESULT
- say "Loading" naam
- load naam
-
- say "Scaling data to fit in interlace screen"
- PCT_SCALE 100 200
-
- say "Set screen mode to LoRes-lace (dithering: Floyd-Steinberg)"
- dither 1
- screen_type 6
-
- say "Rendering image"
- execute
-
- naam = naam || '.'
- sformat "IFF"
- save naam image
- end
-